home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / SUBmods / FontReq.h < prev    next >
Text File  |  1996-09-10  |  693b  |  25 lines

  1. {*
  2. ** External subprogram declarations and structure definitions for the
  3. ** library module FontReq.o, which creates a simple ASL font requester
  4. ** and returns font name, height, style and front/back pen colors. 
  5. **
  6. ** See also ace.doc, "Creating & using ACE subprogram modules".
  7. **
  8. ** This file should reside in ACEinclude: so that #include <FontReq.h>
  9. ** can be used in programs linked with FontReq.o.
  10. **  
  11. ** Author: David J Benn
  12. **   Date: 22nd January 1995, 
  13. **       5th March 1995
  14. *}
  15.  
  16. STRUCT FontInfo
  17.   ADDRESS  fontName
  18.   SHORTINT fontHeight  
  19.   SHORTINT textStyle
  20.   SHORTINT frontColor
  21.   SHORTINT backColor
  22. END STRUCT
  23.  
  24. DECLARE SUB LONGINT FontInfoRequest(ADDRESS fontInfoStruct) EXTERNAL
  25.